HomeSort by: relevance | last modified time | path
    Searched defs:codegen (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
CommandFlags.h 9 // This file contains codegen-specific flags that are shared between different
24 #include "llvm/Support/CodeGen.h"
33 namespace codegen { namespace in namespace:llvm
141 /// Create this object with static storage to register codegen-related command
150 /// a TargetOptions object with CodeGen flags and returns it.
172 } // namespace codegen
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ParallelCG.cpp 13 #include "llvm/CodeGen/ParallelCG.h"
27 static void codegen(Module *M, llvm::raw_pwrite_stream &OS, function
35 report_fatal_error("Failed to setup codegen");
49 codegen(&M, *OSs[0], TMFactory, FileType);
63 // codegen. We do it by serializing partition modules to bitcode
90 codegen(MPartInCtx.get(), *ThreadOS, TMFactory, FileType);
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOBackend.cpp 373 static void codegen(const Config &Conf, TargetMachine *TM, function in class:LTOBitcodeEmbedding
415 report_fatal_error("Failed to setup codegen");
435 // codegen. We do it by serializing partition modules to bitcode
458 codegen(C, TM.get(), AddStream, ThreadId, *MPartInCtx,
515 codegen(C, TM.get(), AddStream, 0, Mod, CombinedIndex);
570 codegen(Conf, TM.get(), AddStream, Task, Mod, CombinedIndex);
585 codegen(Conf, TM, AddStream, Task, Mod, CombinedIndex);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 106 virtual Value *codegen() = 0;
116 Value *codegen() override;
126 Value *codegen() override;
139 Value *codegen() override;
152 Value *codegen() override;
166 Function *codegen();
180 Function *codegen();
412 Value *NumberExprAST::codegen() { function in class:NumberExprAST
416 Value *VariableExprAST::codegen() { function in class:VariableExprAST
424 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
446 Value *CallExprAST::codegen() { function in class:CallExprAST
466 Function *PrototypeAST::codegen() { function in class:PrototypeAST
483 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 116 virtual Value *codegen() = 0;
126 Value *codegen() override;
136 Value *codegen() override;
149 Value *codegen() override;
162 Value *codegen() override;
176 Function *codegen();
190 Function *codegen();
431 // If not, check whether we can codegen the declaration from some existing
435 return FI->second->codegen();
441 Value *NumberExprAST::codegen() { function in class:NumberExprAST
445 Value *VariableExprAST::codegen() { function in class:VariableExprAST
453 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
475 Value *CallExprAST::codegen() { function in class:CallExprAST
495 Function *PrototypeAST::codegen() { function in class:PrototypeAST
512 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/mit/xorg/lib/gallium/
Makefile 107 drivers/nouveau/codegen \
934 GALLIUM_SOURCES.drivers/nouveau/codegen = \ macro
997 ${GALLIUM_SOURCES.drivers/nouveau/codegen} \
1277 CodeGen \
  /src/external/mit/xorg/lib/gallium.old/
Makefile 96 drivers/nouveau/codegen \
745 GALLIUM_SOURCES.drivers/nouveau/codegen = \ macro
805 ${GALLIUM_SOURCES.drivers/nouveau/codegen} \
1070 CodeGen \
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 24 #include "llvm/CodeGen/CommandFlags.h"
65 static codegen::RegisterCodeGenFlags CGF;
124 clEnumValN(THINCODEGEN, "codegen", "CodeGen (expected to match llc)"),
179 cl::desc("Write merged LTO module to file before CodeGen"));
215 cl::desc("Restore original linkage of globals prior to CodeGen"));
415 TargetOptions Options = codegen::InitTargetOptionsFromCodeGenFlags(Triple());
552 ThinGenerator.setCodePICModel(codegen::getExplicitRelocModel());
583 return codegen();
803 void codegen() { function in class:thinlto::ThinLTOProcessing
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 144 virtual Value *codegen() = 0;
154 Value *codegen() override;
164 Value *codegen() override;
177 Value *codegen() override;
190 Value *codegen() override;
203 Value *codegen() override;
215 Value *codegen() override;
230 Value *codegen() override;
244 Value *codegen() override;
262 Function *codegen();
736 Value *NumberExprAST::codegen() { function in class:NumberExprAST
740 Value *VariableExprAST::codegen() { function in class:VariableExprAST
750 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
762 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
815 Value *CallExprAST::codegen() { function in class:CallExprAST
835 Value *IfExprAST::codegen() { function in class:IfExprAST
906 Value *ForExprAST::codegen() { function in class:ForExprAST
988 Value *VarExprAST::codegen() { function in class:VarExprAST
1036 Function *PrototypeAST::codegen() { function in class:PrototypeAST
1053 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 144 virtual Value *codegen() = 0;
154 Value *codegen() override;
164 Value *codegen() override;
177 Value *codegen() override;
190 Value *codegen() override;
203 Value *codegen() override;
215 Value *codegen() override;
230 Value *codegen() override;
244 Value *codegen() override;
262 Function *codegen();
736 Value *NumberExprAST::codegen() { function in class:NumberExprAST
740 Value *VariableExprAST::codegen() { function in class:VariableExprAST
750 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
762 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
815 Value *CallExprAST::codegen() { function in class:CallExprAST
835 Value *IfExprAST::codegen() { function in class:IfExprAST
906 Value *ForExprAST::codegen() { function in class:ForExprAST
988 Value *VarExprAST::codegen() { function in class:VarExprAST
1036 Function *PrototypeAST::codegen() { function in class:PrototypeAST
1053 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 144 virtual Value *codegen() = 0;
154 Value *codegen() override;
164 Value *codegen() override;
177 Value *codegen() override;
190 Value *codegen() override;
203 Value *codegen() override;
215 Value *codegen() override;
230 Value *codegen() override;
244 Value *codegen() override;
262 Function *codegen();
736 Value *NumberExprAST::codegen() { function in class:NumberExprAST
740 Value *VariableExprAST::codegen() { function in class:VariableExprAST
750 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
762 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
815 Value *CallExprAST::codegen() { function in class:CallExprAST
835 Value *IfExprAST::codegen() { function in class:IfExprAST
906 Value *ForExprAST::codegen() { function in class:ForExprAST
988 Value *VarExprAST::codegen() { function in class:VarExprAST
1036 Function *PrototypeAST::codegen() { function in class:PrototypeAST
1053 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 142 virtual Value *codegen() = 0;
152 Value *codegen() override;
162 Value *codegen() override;
175 Value *codegen() override;
188 Value *codegen() override;
201 Value *codegen() override;
213 Value *codegen() override;
228 Value *codegen() override;
242 Value *codegen() override;
260 Function *codegen();
719 Value *NumberExprAST::codegen() { function in class:NumberExprAST
723 Value *VariableExprAST::codegen() { function in class:VariableExprAST
733 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
745 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
798 Value *CallExprAST::codegen() { function in class:CallExprAST
818 Value *IfExprAST::codegen() { function in class:IfExprAST
889 Value *ForExprAST::codegen() { function in class:ForExprAST
971 Value *VarExprAST::codegen() { function in class:VarExprAST
1019 Function *PrototypeAST::codegen() { function in class:PrototypeAST
1044 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 134 virtual Value *codegen() = 0;
144 Value *codegen() override;
154 Value *codegen() override;
167 Value *codegen() override;
180 Value *codegen() override;
192 Value *codegen() override;
207 Value *codegen() override;
221 Function *codegen();
235 Function *codegen();
558 // If not, check whether we can codegen the declaration from some existin
568 Value *NumberExprAST::codegen() { function in class:NumberExprAST
572 Value *VariableExprAST::codegen() { function in class:VariableExprAST
580 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
602 Value *CallExprAST::codegen() { function in class:CallExprAST
622 Value *IfExprAST::codegen() { function in class:IfExprAST
689 Value *ForExprAST::codegen() { function in class:ForExprAST
769 Function *PrototypeAST::codegen() { function in class:PrototypeAST
786 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 142 virtual Value *codegen() = 0;
152 Value *codegen() override;
162 Value *codegen() override;
174 Value *codegen() override;
187 Value *codegen() override;
200 Value *codegen() override;
212 Value *codegen() override;
227 Value *codegen() override;
245 Function *codegen();
269 Function *codegen();
660 Value *NumberExprAST::codegen() { function in class:NumberExprAST
664 Value *VariableExprAST::codegen() { function in class:VariableExprAST
672 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
684 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
714 Value *CallExprAST::codegen() { function in class:CallExprAST
734 Value *IfExprAST::codegen() { function in class:IfExprAST
801 Value *ForExprAST::codegen() { function in class:ForExprAST
881 Function *PrototypeAST::codegen() { function in class:PrototypeAST
898 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 149 virtual Value *codegen() = 0;
159 Value *codegen() override;
169 Value *codegen() override;
182 Value *codegen() override;
195 Value *codegen() override;
208 Value *codegen() override;
220 Value *codegen() override;
235 Value *codegen() override;
249 Value *codegen() override;
267 Function *codegen();
742 Value *NumberExprAST::codegen() { function in class:NumberExprAST
746 Value *VariableExprAST::codegen() { function in class:VariableExprAST
756 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
768 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
821 Value *CallExprAST::codegen() { function in class:CallExprAST
841 Value *IfExprAST::codegen() { function in class:IfExprAST
912 Value *ForExprAST::codegen() { function in class:ForExprAST
994 Value *VarExprAST::codegen() { function in class:VarExprAST
1042 Function *PrototypeAST::codegen() { function in class:PrototypeAST
1059 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 150 virtual Value *codegen() = 0;
160 Value *codegen() override;
170 Value *codegen() override;
183 Value *codegen() override;
196 Value *codegen() override;
209 Value *codegen() override;
221 Value *codegen() override;
236 Value *codegen() override;
250 Value *codegen() override;
268 Function *codegen();
741 Value *NumberExprAST::codegen() { function in class:NumberExprAST
745 Value *VariableExprAST::codegen() { function in class:VariableExprAST
755 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
767 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
820 Value *CallExprAST::codegen() { function in class:CallExprAST
840 Value *IfExprAST::codegen() { function in class:IfExprAST
911 Value *ForExprAST::codegen() { function in class:ForExprAST
993 Value *VarExprAST::codegen() { function in class:VarExprAST
1041 Function *PrototypeAST::codegen() { function in class:PrototypeAST
1058 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 207 virtual Value *codegen() = 0;
224 Value *codegen() override;
235 Value *codegen() override;
249 Value *codegen() override;
266 Value *codegen() override;
284 Value *codegen() override;
302 Value *codegen() override;
323 Value *codegen() override;
344 Value *codegen() override;
370 Function *codegen();
901 Value *NumberExprAST::codegen() { function in class:NumberExprAST
906 Value *VariableExprAST::codegen() { function in class:VariableExprAST
917 Value *UnaryExprAST::codegen() { function in class:UnaryExprAST
930 Value *BinaryExprAST::codegen() { function in class:BinaryExprAST
985 Value *CallExprAST::codegen() { function in class:CallExprAST
1007 Value *IfExprAST::codegen() { function in class:IfExprAST
1080 Value *ForExprAST::codegen() { function in class:ForExprAST
1164 Value *VarExprAST::codegen() { function in class:VarExprAST
1214 Function *PrototypeAST::codegen() { function in class:PrototypeAST
1231 Function *FunctionAST::codegen() { function in class:FunctionAST
    [all...]

Completed in 90 milliseconds