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

  /external/swiftshader/third_party/LLVM/include/llvm/
GVMaterializer.h 44 /// Materialize - make sure the given GlobalValue is fully read. If the
48 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0) = 0;
GlobalValue.h 249 /// Materialize - make sure this GlobalValue is fully read. If the module is
252 bool Materialize(std::string *ErrInfo = 0);
Module.h 170 OwningPtr<GVMaterializer> Materializer; ///< Used to materialize GlobalValues
397 /// Materialize - Make sure the GlobalValue is fully read. If the module is
400 bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
  /external/grpc-grpc/test/core/util/
fuzzer_corpus_test.cc 69 void Materialize() const {
132 Materialize();
138 Materialize();
  /external/v8/src/interpreter/
bytecode-register-optimizer.h 61 // Materialize all live registers and flush equivalence sets.
82 // Materialize the accumulator if it is read by the bytecode. The
86 Materialize(accumulator_info_);
89 // Materialize an equivalent to the accumulator if it will be
130 void Materialize(RegisterInfo* info);
bytecode-register-optimizer.cc 278 // Materialize all live registers and break equivalences.
354 Materialize(info);
361 void BytecodeRegisterOptimizer::Materialize(RegisterInfo* info) {
390 // Materialize an alternate in the equivalence set that
457 Materialize(input_info);
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 225 auto Materialize = [&](GlobalValue &GV) {
226 if (std::error_code EC = GV.materialize()) {
232 // Materialize requisite global values.
235 Materialize(*GVs[i]);
237 // Deleting. Materialize every GV that's *not* in GVs.
241 Materialize(F);
  /external/swiftshader/third_party/LLVM/tools/llvm-extract/
llvm-extract.cpp 168 // Materialize requisite global values.
174 if (GV->Materialize(&ErrInfo)) {
181 // Deleting. Materialize every GV that's *not* in GVs.
188 if (G->Materialize(&ErrInfo)) {
198 if (F->Materialize(&ErrInfo)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-extract/
llvm-extract.cpp 243 // Do not materialize this function.
271 ExitOnErr(F->materialize());
289 auto Materialize = [&](GlobalValue &GV) { ExitOnErr(GV.materialize()); };
291 // Materialize requisite global values.
294 Materialize(*GVs[i]);
296 // Deleting. Materialize every GV that's *not* in GVs.
300 Materialize(F);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Globals.cpp 35 bool GlobalValue::Materialize(std::string *ErrInfo) {
36 return getParent()->Materialize(this, ErrInfo);
Module.cpp 352 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) {
354 return Materializer->Materialize(GV, ErrInfo);
PassManager.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
CoreAPIsTest.cpp 33 SymbolFlagsMap SymbolFlags, MaterializeFunction Materialize,
37 Materialize(std::move(Materialize)), Discard(std::move(Discard)),
45 void materialize(MaterializationResponsibility R) override {
46 Materialize(std::move(R));
57 MaterializeFunction Materialize;
249 // Test that re-exports do not materialize symbols that have not been queried
439 llvm_unreachable("Unexpected call to materialize");
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.h 195 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0);
BitcodeReader.cpp     [all...]
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.cpp 659 if (F->Materialize(&ErrorMsg)) {
  /external/swiftshader/third_party/LLVM/lib/Linker/
LinkModules.cpp     [all...]
  /external/bcc/src/lua/bpf/
bpf.lua 195 -- Materialize (or register) a variable in a register
203 -- Materialize variable shadow copy
304 src_reg = tmp_reg -- Materialize and dereference it
328 -- Materialize constant or shadowing variable to be able to spill
437 -- Now we need to materialize dissected value at DST, and add it
468 vcopy(dst, a) -- DST may alias B, so copy must occur after we materialize B
516 local src_reg = vreg(src) -- Must materialize first in case dst == src
525 local src_reg = vreg(src) -- Must materialize first in case dst == src
752 -- Value is constant, materialize it on stack
    [all...]
builtins.lua 256 -- TODO: this is materialize step
271 e.vreg(e.tmpvar, 3+i-1) -- Materialize it in arg register
proto.lua 215 -- Compute and materialize new dissector offset from parent
226 -- Materialize relative offset value in R0

Completed in 689 milliseconds