OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TargetJITInfo
(Results
1 - 16
of
16
) sorted by null
/external/llvm/include/llvm/Target/
TargetJITInfo.h
1
//===- Target/
TargetJITInfo
.h - Target Information for JIT ------*- C++ -*-===//
30
///
TargetJITInfo
- Target specific information required by the Just-In-Time
32
class
TargetJITInfo
{
34
virtual ~
TargetJITInfo
() {}
TargetMachine.h
38
class
TargetJITInfo
;
163
virtual
TargetJITInfo
*getJITInfo() { return 0; }
/external/llvm/lib/Target/PowerPC/
PPCJITInfo.h
10
// This file contains the PowerPC implementation of the
TargetJITInfo
class.
17
#include "llvm/Target/
TargetJITInfo
.h"
23
class PPCJITInfo : public
TargetJITInfo
{
PPCJITInfo.cpp
25
static
TargetJITInfo
::JITCompilerFn JITCompilerFunction;
343
TargetJITInfo
::LazyResolverFn
349
TargetJITInfo
::StubLayout PPCJITInfo::getStubLayout() {
/external/llvm/lib/ExecutionEngine/JIT/
JIT.h
27
class
TargetJITInfo
;
59
TargetJITInfo
&TJI; // The JITInfo for the target we are compiling to
80
JIT(Module *M, TargetMachine &tm,
TargetJITInfo
&tji,
92
TargetJITInfo
&getJITInfo() const { return TJI; }
JITEmitter.cpp
36
#include "llvm/Target/
TargetJITInfo
.h"
173
TargetJITInfo
::LazyResolverFn LazyResolverFn;
547
TargetJITInfo
::StubLayout SL = TheJIT->getJITInfo().getStubLayout();
610
TargetJITInfo
::StubLayout SL = TheJIT->getJITInfo().getStubLayout();
[
all
...]
JIT.cpp
28
#include "llvm/Target/
TargetJITInfo
.h"
218
if (
TargetJITInfo
*TJ = TM->getJITInfo()) {
270
JIT::JIT(Module *M, TargetMachine &tm,
TargetJITInfo
&tji,
/external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h
26
MCJIT(Module *M, TargetMachine *tm,
TargetJITInfo
&tji,
MCJIT.cpp
48
if (
TargetJITInfo
*TJ = TM->getJITInfo())
57
MCJIT::MCJIT(Module *m, TargetMachine *tm,
TargetJITInfo
&tji,
/external/llvm/lib/Target/CellSPU/
SPUTargetMachine.h
58
virtual
TargetJITInfo
*getJITInfo() {
/external/llvm/lib/Target/X86/
X86JITInfo.h
10
// This file contains the X86 implementation of the
TargetJITInfo
class.
19
#include "llvm/Target/
TargetJITInfo
.h"
25
class X86JITInfo : public
TargetJITInfo
{
X86JITInfo.cpp
50
static
TargetJITInfo
::JITCompilerFn JITCompilerFunction;
425
TargetJITInfo
::LazyResolverFn
460
TargetJITInfo
::StubLayout X86JITInfo::getStubLayout() {
/external/llvm/lib/Target/ARM/
ARMJITInfo.h
21
#include "llvm/Target/
TargetJITInfo
.h"
28
class ARMJITInfo : public
TargetJITInfo
{
ARMJITInfo.cpp
36
static
TargetJITInfo
::JITCompilerFn JITCompilerFunction;
136
TargetJITInfo
::LazyResolverFn
153
TargetJITInfo
::StubLayout ARMJITInfo::getStubLayout() {
/frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.h
51
class
TargetJITInfo
;
85
llvm::
TargetJITInfo
*mpTJI;
CodeEmitter.cpp
57
#include "llvm/Target/
TargetJITInfo
.h"
736
// (
TargetJITInfo
::hasCustomConstantPool() returns true).
948
llvm::
TargetJITInfo
::StubLayout SL = mpTJI->getStubLayout();
[
all
...]
Completed in 1147 milliseconds