Home
last modified time | relevance | path

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

/external/v8/tools/
Dtickprocessor.js575 function addEntry(funcInfo) { argument
580 prevEntry.start < funcInfo.start &&
581 prevEntry.start >= libStart && funcInfo.start <= libEnd) {
582 processorFunc(prevEntry.name, prevEntry.start, funcInfo.start);
584 if (funcInfo.end &&
585 (!prevEntry || prevEntry.start != funcInfo.start) &&
586 funcInfo.start >= libStart && funcInfo.end <= libEnd) {
587 processorFunc(funcInfo.name, funcInfo.start, funcInfo.end);
589 prevEntry = funcInfo;
593 var funcInfo = this.parseNextLine();
[all …]
/external/llvm/lib/Target/ARM/
DARMISelLowering.h334 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const;
505 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()
2088 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) { in createFastISel() argument
2090 const TargetMachine &TM = funcInfo.MF->getTarget(); in createFastISel()
2096 return new ARMFastISel(funcInfo); in createFastISel()
DARMISelLowering.cpp955 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const { in createFastISel()
956 return ARM::createFastISel(funcInfo); in createFastISel()
/external/llvm/include/llvm/CodeGen/
DFastISel.h131 explicit FastISel(FunctionLoweringInfo &funcInfo);
/external/llvm/lib/Target/X86/
DX86ISelLowering.h686 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const;
951 FastISel *createFastISel(FunctionLoweringInfo &funcInfo);
DX86FastISel.cpp59 explicit X86FastISel(FunctionLoweringInfo &funcInfo) : FastISel(funcInfo) { in X86FastISel() argument
2130 llvm::FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo) { in createFastISel() argument
2131 return new X86FastISel(funcInfo); in createFastISel()
DX86ISelLowering.cpp2709 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const { in createFastISel()
2710 return X86::createFastISel(funcInfo); in createFastISel()
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp983 FastISel::FastISel(FunctionLoweringInfo &funcInfo) in FastISel() argument
984 : FuncInfo(funcInfo), in FastISel()
/external/llvm/include/llvm/Target/
DTargetLowering.h1304 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const { in createFastISel() argument