Searched defs:FastISel (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DFastISel.h1 //===-- FastISel.h - Definition of the FastISel class ---*- C++ -*---------===//
11 /// This file defines the FastISel class.
47 class FastISel { class in namespace:llvm
163 virtual ~FastISel();
166 explicit FastISel(FunctionLoweringInfo &funcInfo,
169 /// This method is called by target-independent code when the normal FastISel
171 /// emit code for anything that doesn't fit into FastISel's framework. It
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1 //===-- FastISel.cpp - Implementation of the FastISel class ---------------===//
10 // This file contains the implementation of the FastISel class.
43 #include "llvm/CodeGen/FastISel.h"
76 void FastISel::startNewBlock() {
88 bool FastISel::LowerArguments() {
107 void FastISel::flushLocalValueMap() {
113 bool FastISel::hasTrivialKill(const Value *V) const {
139 unsigned FastISel::getRegForValue(const Value *V) {
141 // Don't handle non-simple values in FastISel
1095 FastISel::FastISel(FunctionLoweringInfo &funcInfo, function in class:FastISel
[all...]
H A DSelectionDAGBuilder.cpp25 #include "llvm/CodeGen/FastISel.h"
6635 static bool isOnlyUsedInEntryBlock(const Argument *A, bool FastISel) { argument
6636 // With FastISel active, we may be splitting blocks, so force creation
6638 if (FastISel)
6791 // Also remember any frame index for use in FastISel.
6843 // general. It's also subtly incompatible with the hacks FastISel

Completed in 168 milliseconds