HomeSort by relevance Sort by last modified time
    Searched refs:Fn (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/valgrind/main/perf/
many-xpts.c 4 #define Fn(N, Np1) \
18 Fn(17, 999)
19 Fn(16, 17)
20 Fn(15, 16)
21 Fn(14, 15)
22 Fn(13, 14)
23 Fn(12, 13)
24 Fn(11, 12)
25 Fn(10, 11)
26 Fn( 9, 10
    [all...]
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.h 45 bool runOnMachineFunction(MachineFunction &Fn) override;
63 void calculateSets(MachineFunction &Fn);
64 void calculateCallsInformation(MachineFunction &Fn);
65 void calculateCalleeSavedRegisters(MachineFunction &Fn);
66 void insertCSRSpillsAndRestores(MachineFunction &Fn);
67 void calculateFrameObjectOffsets(MachineFunction &Fn);
68 void replaceFrameIndices(MachineFunction &Fn);
69 void replaceFrameIndices(MachineBasicBlock *BB, MachineFunction &Fn,
71 void scavengeFrameVirtualRegs(MachineFunction &Fn);
72 void insertPrologEpilogCode(MachineFunction &Fn);
    [all...]
PrologEpilogInserter.cpp 86 void PEI::calculateSets(MachineFunction &Fn) {
89 Fn.getFrameInfo()->getCalleeSavedInfo();
96 EntryBlock = Fn.begin();
97 for (MachineFunction::iterator MBB = Fn.begin(), E = Fn.end();
111 bool PEI::runOnMachineFunction(MachineFunction &Fn) {
112 const Function* F = Fn.getFunction();
113 const TargetRegisterInfo *TRI = Fn.getTarget().getRegisterInfo();
114 const TargetFrameLowering *TFI = Fn.getTarget().getFrameLowering();
116 assert(!Fn.getRegInfo().getNumVirtRegs() && "Regalloc must assign all vregs")
    [all...]
DwarfEHPrepare.cpp 41 bool InsertUnwindResumeCalls(Function &Fn);
51 bool runOnFunction(Function &Fn) override;
109 bool DwarfEHPrepare::InsertUnwindResumeCalls(Function &Fn) {
111 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
127 RewindFunction = Fn.getParent()->getOrInsertFunction(RewindName, FTy);
131 LLVMContext &Ctx = Fn.getContext();
150 BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", &Fn);
177 bool DwarfEHPrepare::runOnFunction(Function &Fn) {
178 bool Changed = InsertUnwindResumeCalls(Fn);
    [all...]
CallingConvLower.cpp 68 CCAssignFn Fn) {
74 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
87 CCAssignFn Fn) {
92 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this))
101 CCAssignFn Fn) {
106 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) {
119 CCAssignFn Fn) {
124 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) {
138 CCAssignFn Fn) {
143 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this))
    [all...]
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 46 CAMLprim value llvm_verify_function(LLVMValueRef Fn) {
47 return Val_bool(LLVMVerifyFunction(Fn, LLVMReturnStatusAction) == 0);
57 CAMLprim value llvm_assert_valid_function(LLVMValueRef Fn) {
58 LLVMVerifyFunction(Fn, LLVMAbortProcessAction);
63 CAMLprim value llvm_view_function_cfg(LLVMValueRef Fn) {
64 LLVMViewFunctionCFG(Fn);
69 CAMLprim value llvm_view_function_cfg_only(LLVMValueRef Fn) {
70 LLVMViewFunctionCFGOnly(Fn);
  /external/compiler-rt/test/msan/
wrap_indirect_calls2.cc 29 typedef void (*Fn)(void);
30 extern "C" Fn my_wrapper(Fn target) {
36 volatile Fn fp;
  /external/llvm/include/llvm-c/
Analysis.h 50 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
54 void LLVMViewFunctionCFG(LLVMValueRef Fn);
55 void LLVMViewFunctionCFGOnly(LLVMValueRef Fn);
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1.cpp 12 typedef void Fn();
13 Fn ar4[10]; // expected-error {{array of functions}}
15 struct Abstract { virtual void fn() = 0; }; // expected-note {{pure virtual}}
  /external/llvm/lib/Support/
Threading.cpp 44 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData,
46 ThreadInfo Info = { Fn, UserData };
86 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData,
88 struct ThreadInfo param = { Fn, UserData };
106 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData,
109 Fn(UserData);
  /frameworks/compile/mclinker/include/mcld/Support/
TargetRegistry.h 61 /// @param Fn - A function to construct a TargetMachine for the target.
62 static void RegisterTargetMachine(mcld::Target &T, mcld::Target::TargetMachineCtorTy Fn)
66 T.TargetMachineCtorFn = Fn;
73 /// @param Fn - A function to create MCLinker for the target
74 static void RegisterMCLinker(mcld::Target &T, mcld::Target::MCLinkerCtorTy Fn)
77 T.MCLinkerCtorFn = Fn;
84 /// @param Fn - A emulation function
85 static void RegisterEmulation(mcld::Target &T, mcld::Target::EmulationFnTy Fn)
88 T.EmulationFn = Fn;
95 /// @param Fn - A function to create TargetLDBackend for the targe
    [all...]
  /external/llvm/include/llvm/Support/
TargetRegistry.h 468 MCRelocationInfoCtorTy Fn = MCRelocationInfoCtorFn
471 return Fn(TT, Ctx);
488 MCSymbolizerCtorTy Fn =
490 return Fn(TT, GetOpInfo, SymbolLookUp, DisInfo, Ctx, RelInfo);
600 /// @param Fn - A function to construct a MCAsmInfo for the target.
601 static void RegisterMCAsmInfo(Target &T, Target::MCAsmInfoCtorFnTy Fn) {
602 T.MCAsmInfoCtorFn = Fn;
613 /// @param Fn - A function to construct a MCCodeGenInfo for the target.
615 Target::MCCodeGenInfoCtorFnTy Fn) {
616 T.MCCodeGenInfoCtorFn = Fn;
    [all...]
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 151 const Function &Fn;
158 DiagnosticInfoStackSize(const Function &Fn, unsigned StackSize,
160 : DiagnosticInfo(DK_StackSize, Severity), Fn(Fn), StackSize(StackSize) {}
162 const Function &getFunction() const { return Fn; }
245 /// \p Fn is the function where the diagnostic is being emitted. \p DLoc is
252 const char *PassName, const Function &Fn,
254 : DiagnosticInfo(Kind, DS_Remark), PassName(PassName), Fn(Fn), DLoc(DLoc),
284 const Function &getFunction() const { return Fn; }
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-template-callback.cpp 74 template <void (*Fn)()> void WrapFnPtr() { Fn(); }
75 template <void (&Fn)()> void WrapFnRef() { Fn(); }
  /external/llvm/include/llvm/Transforms/IPO/
PassManagerBuilder.h 132 static void addGlobalExtension(ExtensionPointTy Ty, ExtensionFn Fn);
133 void addExtension(ExtensionPointTy Ty, ExtensionFn Fn);
157 PassManagerBuilder::ExtensionFn Fn) {
158 PassManagerBuilder::addGlobalExtension(Ty, Fn);
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 39 bool runOnMachineFunction(MachineFunction &Fn) override;
55 bool MSP430BSel::runOnMachineFunction(MachineFunction &Fn) {
57 static_cast<const MSP430InstrInfo*>(Fn.getTarget().getInstrInfo());
59 Fn.RenumberBlocks();
60 BlockSizes.resize(Fn.getNumBlockIDs());
64 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
100 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 66 Function *Fn = CI->getCalledFunction();
67 if (!Fn || Fn->getIntrinsicID() != Intrinsic::expect)
120 Function *Fn = CI->getCalledFunction();
121 if (!Fn || Fn->getIntrinsicID() != Intrinsic::expect)
169 Function *Fn = CI->getCalledFunction();
170 if (Fn && Fn->getIntrinsicID() == Intrinsic::expect) {
  /external/llvm/lib/Analysis/
Analysis.cpp 96 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) {
98 *unwrap<Function>(Fn), Action != LLVMReturnStatusAction ? &errs()
107 void LLVMViewFunctionCFG(LLVMValueRef Fn) {
108 Function *F = unwrap<Function>(Fn);
112 void LLVMViewFunctionCFGOnly(LLVMValueRef Fn) {
113 Function *F = unwrap<Function>(Fn);
  /external/llvm/lib/Target/Hexagon/
HexagonCallingConvLower.h 79 Hexagon_CCAssignFn Fn, unsigned SretValueInRegs);
84 Hexagon_CCAssignFn Fn, unsigned SretValueInRegs);
89 Hexagon_CCAssignFn Fn, int NonVarArgsParams,
96 Hexagon_CCAssignFn Fn);
101 Hexagon_CCAssignFn Fn, unsigned SretValueInRegs);
105 void AnalyzeCallResult(EVT VT, Hexagon_CCAssignFn Fn);
HexagonCallingConvLower.cpp 68 Hexagon_CCAssignFn Fn,
83 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this, 0, 0, false)) {
95 Hexagon_CCAssignFn Fn,
119 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this, -1, -1, false)){
133 Hexagon_CCAssignFn Fn,
149 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this,
163 Hexagon_CCAssignFn Fn) {
168 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this, -1, -1,
181 Hexagon_CCAssignFn Fn,
187 if (Fn(i, VT, VT, CCValAssign::Full, Flags, *this, -1, -1, false))
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
start-deactivated.cc 29 typedef void (*Fn)();
45 void *fn = dlsym(dso, "do_another_bad_thing"); local
46 if (!fn) {
51 ((Fn)fn)();
  /sdk/emulator/opengl/host/include/libOpenglRender/
render_api.h 38 typedef ret (* name##Fn) args
41 typedef ret (* name##Fn) args ; \
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 31 void *emitFunctionStub(const Function *F, void *Fn,
  /external/llvm/lib/Target/Sparc/
SparcJITInfo.h 47 void *emitFunctionStub(const Function *F, void *Fn,
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 176 llvm::Function *fn = local
181 CGF.StartFunction(&VD, CGM.getContext().VoidTy, fn,
193 return fn;
233 llvm::Function *Fn =
240 Fn->setSection(Section);
243 Fn->setCallingConv(CGM.getRuntimeCC());
246 Fn->setDoesNotThrow();
248 if (!CGM.getSanitizerBlacklist().isIn(*Fn)) {
250 Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
252 Fn->addFnAttr(llvm::Attribute::SanitizeThread)
535 llvm::Function *fn = local
    [all...]

Completed in 774 milliseconds

1 2 3 4 5 6 7 8 9