OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FastISel
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/CodeGen/
FastISel.h
1
//===--
FastISel
.h - Definition of the
FastISel
class ---------------------===//
10
// This file defines the
FastISel
class.
41
///
FastISel
- This is a fast-path instruction selection class that
44
class
FastISel
{
128
virtual ~
FastISel
();
131
explicit
FastISel
(FunctionLoweringInfo &funcInfo);
134
/// code when the normal
FastISel
process fails to select an instruction.
136
/// fit into
FastISel
's framework. It returns true if it was successful.
/external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp
1
//===--
FastISel
.cpp - Implementation of the
FastISel
class ---------------===//
10
// This file contains the implementation of the
FastISel
class.
48
#include "llvm/CodeGen/
FastISel
.h"
66
void
FastISel
::startNewBlock() {
82
bool
FastISel
::hasTrivialKill(const Value *V) const {
103
unsigned
FastISel
::getRegForValue(const Value *V) {
105
// Don't handle non-simple values in
FastISel
.
111
// of whether
FastISel
can handle them.
154
unsigned
FastISel
::materializeRegForValue(const Value *V, MVT VT)
[
all
...]
Completed in 88 milliseconds