HomeSort by relevance Sort by last modified time
    Searched refs:FastISel (Results 1 - 12 of 12) sorted by null

  /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...]
Android.mk 5 FastISel.cpp \
SelectionDAGISel.cpp 30 #include "llvm/CodeGen/FastISel.h"
739 FastISel *FastIS) {
810 FastISel *FastIS = 0;
    [all...]
  /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.
SelectionDAGISel.h 24 class FastISel;
284 FastISel *FastIS);
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 21 #include "llvm/CodeGen/FastISel.h"
332 /// createFastISel - This method returns a target specific FastISel object,
334 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const;
505 FastISel *createFastISel(FunctionLoweringInfo &funcInfo);
ARMFastISel.cpp 1 //===-- ARMFastISel.cpp - ARM FastISel implementation ---------------------===//
10 // This file defines the ARM-specific support for the FastISel class. Some
32 #include "llvm/CodeGen/FastISel.h"
82 class ARMFastISel : public FastISel {
98 : FastISel(funcInfo),
108 // Code from FastISel.cpp.
147 // Backend specific FastISel code.
701 // Some boilerplate from the X86 FastISel.
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 23 #include "llvm/CodeGen/FastISel.h"
684 /// createFastISel - This method returns a target specific FastISel object,
686 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const;
    [all...]
X86FastISel.cpp 1 //===-- X86FastISel.cpp - X86 FastISel implementation ---------------------===//
10 // This file defines the X86-specific support for the FastISel class. Much
29 #include "llvm/CodeGen/FastISel.h"
42 class X86FastISel : public FastISel {
59 explicit X86FastISel(FunctionLoweringInfo &funcInfo) : FastISel(funcInfo) {
695 // tail call optimization. Fastisel doesn't know how to do that.
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 44 class FastISel;
    [all...]

Completed in 87 milliseconds