Searched refs:funcInfo (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/v8/tools/
H A Dtickprocessor.js633 function addEntry(funcInfo) {
638 prevEntry.start < funcInfo.start &&
639 prevEntry.start >= libStart && funcInfo.start <= libEnd) {
640 processorFunc(prevEntry.name, prevEntry.start, funcInfo.start);
642 if (funcInfo.end &&
643 (!prevEntry || prevEntry.start != funcInfo.start) &&
644 funcInfo.start >= libStart && funcInfo.end <= libEnd) {
645 processorFunc(funcInfo.name, funcInfo
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp53 explicit MipsFastISel(FunctionLoweringInfo &funcInfo, argument
55 : FastISel(funcInfo, libInfo),
56 M(const_cast<Module &>(*funcInfo.Fn->getParent())),
57 TM(funcInfo.MF->getTarget()), TII(*TM.getInstrInfo()),
60 MFI = funcInfo.MF->getInfo<MipsFunctionInfo>();
61 Context = &funcInfo.Fn->getContext();
396 FastISel *Mips::createFastISel(FunctionLoweringInfo &funcInfo, argument
398 return new MipsFastISel(funcInfo, libInfo);
H A DMipsISelLowering.h223 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
618 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
H A DMipsISelLowering.cpp415 MipsTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, argument
418 return TargetLowering::createFastISel(funcInfo, libInfo);
419 return Mips::createFastISel(funcInfo, libInfo);
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp1236 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; local
1237 const char* shaderFuncName = funcInfo.shaderFuncName;
1238 bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA);
1239 bool isIntCase = (funcInfo.input0.valueType & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0;
1241 bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)) != 0;
1242 bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0;
1245 if (!innerGroup || (string(innerGroup->getName()) != funcInfo.caseName))
1248 innerGroup = new TestCaseGroup(m_context, funcInfo.caseName, groupDesc.c_str());
1254 int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp1874 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; local
1875 const char* shaderFuncName = funcInfo.shaderFuncName;
1876 bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA);
1877 bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)) != 0;
1878 bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0;
1879 bool isUintOut = (funcInfo.outValue & (VALUE_UINT | VALUE_UINT_VEC | VALUE_UINT_GENTYPE)) != 0;
1882 if (!innerGroup || (string(innerGroup->getName()) != funcInfo.caseName))
1885 innerGroup = new TestCaseGroup(m_context, funcInfo.caseName, groupDesc.c_str());
1891 int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h249 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
461 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
H A DAArch64FastISel.cpp152 explicit AArch64FastISel(FunctionLoweringInfo &funcInfo, argument
154 : FastISel(funcInfo, libInfo) {
156 Context = &funcInfo.Fn->getContext();
1990 llvm::FastISel *AArch64::createFastISel(FunctionLoweringInfo &funcInfo, argument
1992 return new AArch64FastISel(funcInfo, libInfo);
H A DAArch64ISelLowering.cpp640 AArch64TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, argument
642 return AArch64::createFastISel(funcInfo, libInfo);
/external/llvm/include/llvm/CodeGen/
H A DFastISel.h168 explicit FastISel(FunctionLoweringInfo &funcInfo,
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.h366 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
596 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
H A DARMFastISel.cpp93 explicit ARMFastISel(FunctionLoweringInfo &funcInfo, argument
95 : FastISel(funcInfo, libInfo),
96 M(const_cast<Module&>(*funcInfo.Fn->getParent())),
97 TM(funcInfo.MF->getTarget()),
101 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>();
103 Context = &funcInfo.Fn->getContext();
3060 FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo, argument
3062 const TargetMachine &TM = funcInfo.MF->getTarget();
3077 return new ARMFastISel(funcInfo, libInfo);
H A DARMISelLowering.cpp1093 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, argument
1095 return ARM::createFastISel(funcInfo, libInfo);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.h781 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
1011 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
H A DX86FastISel.cpp59 explicit X86FastISel(FunctionLoweringInfo &funcInfo, argument
61 : FastISel(funcInfo, libInfo) {
3371 FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo, argument
3373 return new X86FastISel(funcInfo, libInfo);
H A DX86ISelLowering.cpp3345 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, argument
3347 return X86::createFastISel(funcInfo, libInfo);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1210 FastISel::FastISel(FunctionLoweringInfo &funcInfo, argument
1212 : FuncInfo(funcInfo),
1213 MF(funcInfo.MF),
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 478 milliseconds