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

  /external/v8/src/asmjs/
asm-wasm-builder.h 35 const AsmTyper* typer() { return &typer_; }
39 AsmTyper typer_; member in class:v8::internal::wasm::AsmWasmBuilder
asm-typer.h 182 explicit FunctionScope(AsmTyper* typer) : typer_(typer) {
183 DCHECK(!typer_->in_function_);
184 typer_->in_function_ = true;
185 typer_->local_scope_.Clear();
186 typer_->return_type_ = AsmType::None();
190 DCHECK(typer_->in_function_);
191 typer_->in_function_ = false;
194 AsmTyper* typer_; member in struct:v8::internal::wasm::final::FunctionScope
asm-wasm-builder.cc 76 typer_(typer),
127 if (!typer_->ValidateBeforeFunctionsPhase()) {
136 typer_->FailWithMessage("Module missing export section.");
178 typer_->TriggerParsingError();
186 if (!typer_->ValidateInnerFunction(decl)) {
215 typer_->ClearFunctionNodeTypes();
341 typer_->FailWithMessage("Module has multiple returns.");
345 if (!typer_->ValidateAfterFunctionsPhase()) {
546 if (auto* func_type = typer_->TypeOf(expr)->AsFunctionType()) {
603 typer_->VariableAsStandardMember(var)
1969 AsmTyper* typer_; member in class:v8::internal::wasm::final
    [all...]
  /external/v8/src/compiler/
typer.cc 29 explicit Decorator(Typer* typer) : typer_(typer) {}
33 Typer* const typer_; member in class:v8::internal::compiler::final
72 : typer_(typer),
214 Typer* typer_; member in class:v8::internal::compiler::Typer::Visitor
239 Zone* zone() { return typer_->zone(); }
240 Isolate* isolate() { return typer_->isolate(); }
241 Graph* graph() { return typer_->graph(); }
357 Visitor typing(typer_, nullptr);
361 typer_->zone());
378 return input->IsInhabited() ? f(input, typer_) : Type::None()
    [all...]

Completed in 71 milliseconds