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

  /external/v8/src/
compiler.h 53 // A description of the compilation state at a bailout to the secondary
60 // There is a label that should be bound to the beginning of the bailout
62 class Bailout : public ZoneObject {
64 Bailout(Register left, Register right) : left_(left), right_(right) {}
151 List<Bailout*>* bailouts() { return &bailouts_; }
175 // Add a bailout with two live values.
177 Bailout* bailout = new Bailout(left, right); local
178 bailouts_.Add(bailout);
    [all...]
  /external/v8/src/arm/
codegen-arm.cc 281 // Bind all the bailout labels to the beginning of the function.
282 List<CompilationInfo::Bailout*>* bailouts = info->bailouts();
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 411 // Bind all the bailout labels to the beginning of the function.
412 List<CompilationInfo::Bailout*>* bailouts = info->bailouts();
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 259 // Bind all the bailout labels to the beginning of the function.
260 List<CompilationInfo::Bailout*>* bailouts = info->bailouts();
    [all...]

Completed in 773 milliseconds