HomeSort by relevance Sort by last modified time
    Searched defs:Checkpoint (Results 1 - 6 of 6) sorted by null

  /external/libcxx/test/support/
assert_checkpoint.h 8 struct Checkpoint {
14 Checkpoint() : file(nullptr), func(nullptr), line(-1), msg(nullptr) {}
15 Checkpoint(const char* xfile, const char* xfunc, int xline, const char* xmsg)
22 s << "NO CHECKPOINT\n";
25 s << file << ":" << line << " " << func << ": Checkpoint";
32 inline Checkpoint& globalCheckpoint() {
33 static Checkpoint C;
38 globalCheckpoint() = Checkpoint();
47 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint(__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE__, msg)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
assert_checkpoint.h 8 struct Checkpoint {
17 s << "NO CHECKPOINT\n";
20 s << file << ":" << line << " " << func << ": Checkpoint";
27 inline Checkpoint& globalCheckpoint() {
28 static Checkpoint C;
33 globalCheckpoint() = Checkpoint{0};
42 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint{__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE__, msg}
  /external/v8/src/compiler/
liveness-analyzer.h 105 void Checkpoint(Node* node) { entries_.push_back(Entry(node)); }
ast-graph-builder.cc 682 Node* AstGraphBuilder::Environment::Checkpoint(BailoutId ast_id,
704 // If the owning node has an exception, register the checkpoint to the
705 // predecessor so that the checkpoint is used for both the normal and the
709 liveness_block()->GetPredecessor()->Checkpoint(result);
711 liveness_block()->Checkpoint(result);
3042 Node* checkpoint = graph->NewNode(common()->Checkpoint(), frame_state, local
    [all...]
bytecode-graph-builder.cc 58 // Preserve a checkpoint of the environment for the IR graph. Any
60 Node* Checkpoint(BailoutId bytecode_offset, OutputFrameStateCombine combine,
332 Checkpoint(loop_id, OutputFrameStateCombine::Ignore(), false, nullptr);
333 Node* checkpoint = local
334 graph()->NewNode(common()->Checkpoint(), frame_state, entry, entry);
335 UpdateEffectDependency(checkpoint);
339 Node* effect = checkpoint;
422 Node* BytecodeGraphBuilder::Environment::Checkpoint(
577 // Create an explicit checkpoint node for before the operation. This only
578 // needs to happen if we aren't effect-dominated by a {Checkpoint} already
    [all...]
  /external/v8/src/parsing/
parser-base.h 290 class Checkpoint;
491 friend class Checkpoint;
540 class Checkpoint BASE_EMBEDDED {
542 explicit Checkpoint(ParserBase* parser) {
    [all...]

Completed in 2028 milliseconds